.drawer-content {
    padding: 20px;

    font-size: 20px;
    font-weight: 500;
    font-style: normal;
    line-height: 24px;

    color: #050d33;
}

.drawer-content h1 {
    margin: 0 0 10px;

    font-size: 32px;
    line-height: 36px;
}

.container {
    --button-width: 24px;
    display: flex;
    flex-direction: row;

    width: 100%;
    height: 100%;
    gap: 8px;
}

.container #app {
    border: 1px solid rgba(92, 94, 102, 0.14);
    border-radius: 8px;
}

.control {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    width: 200px;
    padding: 16px;

    font-size: 12px;
    font-style: normal;
    line-height: 16px;

    color: #7b7d85;
    border: 1px solid rgba(92, 94, 102, 0.14);
    border-radius: 8px;
    background: #fff;
}

.positions-control {
    position: relative;

    height: 140px;

    border-radius: 8px;
    background: #fff;
}

button {
    margin: 0;
    padding: 0;

    border: none;
    outline: none;
    background: none;
}

button.positions {
    position: absolute;

    cursor: pointer;

    border: 1px solid #5c5e6624;
    border-radius: 8px;
}

button.positions.active,
button.positions:hover {
    background-color: #122db20a;
}

button.top {
    top: 0;

    width: 100%;
    height: var(--button-width);
}

button.bottom {
    bottom: 0;

    width: 100%;
    height: var(--button-width);
}

button.left {
    left: 0;

    width: var(--button-width);
    height: 100%;
}

button.right {
    right: 0;

    width: var(--button-width);
    height: 100%;
}

button.circle {
    display: block;

    width: 16px;
    height: 16px;

    border: 2px solid #fff;
    border-radius: 8px;
    background-color: #e4e6eb;
}

button.circle.active {
    background-color: #34374a;
}

button.circle.active:hover {
    border-color: #34374a;
}

button.circle:hover {
    border-color: #e4e6eb;
}

.vertical {
    position: absolute;

    display: none;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;

    box-sizing: border-box;
    width: 16px;
    height: 100%;
    padding: 32px 0;
}

.vertical.left {
    left: 30px;

    display: flex;
}

.vertical.right {
    right: 30px;

    display: flex;
}

.horizontal {
    position: absolute;

    display: none;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

    box-sizing: border-box;
    width: 100%;
    height: 16px;
    padding: 0 32px;
}

.horizontal.top {
    top: 30px;

    display: flex;
}

.horizontal.bottom {
    bottom: 30px;

    display: flex;
}
